home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / lib / misc / version.c < prev   
C/C++ Source or Header  |  1990-02-06  |  924b  |  30 lines

  1. /* 
  2.  * version.c --
  3.  *
  4.  *     Returns version from version.h  Ideally version.h is recreated
  5.  *     and this file is recompiled just before the main program is loaded.
  6.  *
  7.  * Copyright 1985, 1990 Regents of the University of California
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  */
  16.  
  17. #ifndef lint
  18. static char rcsid[] = "$Header: /sprite/lib/misc/RCS/version.c,v 1.2 90/02/06 15:35:59 douglis Exp $ SPRITE (Berkeley)";
  19. #endif not lint
  20.  
  21. #include "version.h"    /* automatically generated */
  22.  
  23. static char versionString[] = VERSION ;
  24.  
  25. char *
  26. Version()
  27. {
  28.     return(versionString) ;
  29. }
  30.